home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Includes / PedMenuApple.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  399 b   |  21 lines

  1. /*    ===============
  2.  *    PedMenuApple.hh
  3.  *    ===============
  4.  */
  5.  
  6. #pragma once
  7.  
  8. #include "PedMenu.hh"
  9.  
  10. class PedMenuApple : public PedMenu {
  11. public:
  12.     PedMenuApple();
  13.     virtual void InstallCommand(PedCommand *inCmd, CmdCode inCode);
  14.     virtual void DoMenuItem(short inItem);
  15. protected:
  16.     virtual void AppendAppleMenuItems();
  17.     virtual void DoAppleMenuItem(short inItem);
  18. protected:
  19.     PedCommand *mAboutCmd;
  20. };
  21.